home *** CD-ROM | disk | FTP | other *** search
- ;-------------------------routine begins--------------------------+
- ; ROUTINE FOR STANDARD OUTPUT
- ;
- stdout proc far
- push dx ; save registers
- ;
- mov dl,al ; in DL for DOS call
- mov ah,2 ; std output
- int 21h ; dos call
- ;
- pop dx ; restore registers
- ret
- stdout endp
- ;-------------------------routine ends---------------------------+